home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Libraries / Item Class / Item sources / Item.c < prev   
Encoding:
C/C++ Source or Header  |  1993-09-13  |  235 b   |  17 lines  |  [TEXT/KAHL]

  1. /*
  2.  * File:        Item.c
  3.  * Created:        8/10/93
  4.  *
  5.  * Copyright © 1993 Animas Software Production. All rights reserved.
  6.  */
  7.  
  8. #include "CItemApp.h"
  9.  
  10. main()
  11. {
  12.     CItemApp    *demoApp;
  13.         
  14.     demoApp = new CItemApp;
  15.     demoApp->Run();
  16.     demoApp->Exit();    
  17. }